home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asmexam.arc / ASM0001.REV < prev    next >
Encoding:
Text File  |  1980-01-01  |  1.7 KB  |  50 lines

  1.  
  2.  
  3.  
  4.  
  5.          ASM0001
  6.          This disk contains files which are examples used in a
  7.          course given for the North Texas IBM PC User's Group.
  8.  
  9.  
  10.          GLOS         Glossary of terms
  11.  
  12.          FILENAME.ASM  Assembly source
  13.          FILENAME.OBJ  Output of assembler (relocatable object)
  14.                        needs to be linked
  15.          FILENAME.LST  Listing file use compressed print
  16.          FILENAME.EXE   Output of linker executable file
  17.  
  18.          To run a file under debug enter:
  19.          A>DEBUG FILENAME.EXE
  20.          To run a file stand alone (see caution)
  21.          A>FILENAME
  22.  
  23.          =========== Run these files only under debug ==========
  24.          =========== and single step using T command  ==========
  25.          File Name
  26.  
  27.          MOVINST    mov instructions run single step under debug
  28.          ASCADJ     decimal and ascii adjust instrucions
  29.          JUMP       near jum instructions
  30.          ARITH      arithmetic instructions
  31.          LOGIC      logical instructions
  32.          STRING     string instructions
  33.          ODDS       odds and ends
  34.          ASCIIBIN   Ascii to binary conversion example
  35.          ASCIBIN1   Variation on ascii/binary conversion
  36.  
  37.  
  38.          ==========  Runable without debug =====================
  39.          File Name
  40.  
  41.          MEMSIZE      checks memory size and if > 512 updates
  42.                       memsize variable
  43.          PASSWORD     For dos 2.1, a way to setup a password  for
  44.                       system
  45.          FREE         Shows free space on a disk under 2.1 -
  46.                       details FCB
  47.          DUMP         Allows file contents to be dumped to
  48.                       printer, file or screen
  49.                       details file handles in 2.1
  50.